| Overload | Description |
|---|---|
| NQueue<T> Constructor() | Default queue constructor |
| NQueue<T> Constructor(Int32) | Creates a new queue with the specified capacity. |
| NQueue<T> Constructor(Int32,INIterator<T>) | Creates a new queue, which is initialized with the remaining items of the specified iterator. |
| NQueue<T> Constructor(INIterator<T>) | Creates a new queue, which is initialized with the remaining items of the specified iterator. |
| NQueue<T> Constructor(INSet<T>) | Creates a new queue, which is initialized with the items of the specified set. |
| NQueue<T> Constructor(T[],Int32) | Creates a new queue, which is initialized with the items of the specified array. |